home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / Preferences.subproj / askresolverfordomain.c next >
Encoding:
C/C++ Source or Header  |  1996-01-30  |  244 b   |  17 lines

  1. #import "askresolverfordomain.h"
  2. #include <stdio.h>
  3.  
  4. #include <sys/types.h>
  5. #include <sys/socket.h>
  6. #include <netinet/in.h>
  7.  
  8. #include <arpa/nameser.h>
  9. #include <resolv.h>
  10.  
  11.  
  12. char *askresolverfordomain()
  13. {
  14.   res_init();
  15.   return _res.defdname;
  16. }
  17.